﻿
body{
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar{
    background:#0d1b2a;
}

.navbar-brand{
    font-size:28px;
    font-weight:bold;
    color:#fff !important;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.65)),
                url('../../img/pharenda/b1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect if possible on desktop */
    min-height: 95vh; /* Thoda height badhaye premium look ke liye */
    color: white;
    padding: 60px 0;
}

/* Welcome Badge */
.premium-badge {
    color: #FFD700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
}

/* Responsive and Bold Heading */
.hero-title {
    font-size: calc(2.2rem + 2vw); /* Automatically scales on mobile and desktop */
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.brand-highlight {
    color: #FFD700;
    position: relative;
}

/* Description Text */
.hero-text {
    font-size: calc(1rem + 0.3vw);
    font-weight: 400;
    max-width: 650px; /* Text ko center me clean set rakhega */
    opacity: 0.9;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Base Style for Premium Buttons */
.btn-premium {
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: 50px; /* Rounded pill shape look */
    border: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%; /* Mobile par fully width cover karega */
}

@media (min-width: 576px) {
    .btn-premium {
        width: auto; /* Desktop aur tablet par clean limited length */
    }
}

/* WhatsApp Specific Style */
.btn-whatsapp {
    background-color: #25D366;
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px); /* Chhota sa jumping animations */
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Call Specific Style */
.btn-call {
    background-color: #FFD700;
}
.btn-call:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}
/* ! hero end  */
/* ! name card  start */
/* Premium Golden Action Button */
.btn-gold-premium {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    background-size: 200% auto;
    color: #000000 !important; /* Pure Black Text for High Contrast & Premium Look */
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4) !important;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-gold-premium {
        width: auto; /* Desktop par perfect size */
    }
}

/* Button Hover Effects */
.btn-gold-premium:hover {
    background-position: right center; /* Smooth gradient shift */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6) !important;
    color: #000000 !important; /* Hover karne par bhi text Black hi rahega */
}

/* Icon and Phone Number Boldness */
.btn-gold-premium i {
    color: #000000 !important; /* WhatsApp icon v black rahega */
}

.btn-gold-premium .phone-num {
    font-weight: 800; /* Number ko thoda zyada bold kiya */
    color: #000000 !important;
}
 /* ! end name card */

/* Property Card */
/*!======== Plot Card Grid============== */
/* Premium Grid Header Styling */
/* Premium Grid Header Styling */
.section-title-premium {
    font-family: 'Poppins', sans-serif;
    color: #111111;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
}
.title-line-gold {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #D4AF37;
    border-radius: 2px;
}

/* Luxury Property Card Container */
.property-card-premium {
    border-radius: 16px !important;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Image Container with Zoom Effect */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.card-img-wrapper img {
    transition: transform 0.6s ease;
}

/* Card Hover Animations */
.property-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}
.property-card-premium:hover .card-img-wrapper img {
    transform: scale(1.08); 
}

/* Typography inside card */
.plot-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.property-card-premium:hover .plot-title {
    color: #b3921b; 
}

/* Phone Number Styling (Full Width Block) */
.plot-phone-block {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #111111;
    font-size: 1.15rem;
    text-align: center;
    background-color: #fafafa;
    padding: 10px;
    border-radius: 8px;
    border: 1px dashed rgba(0,0,0,0.08);
}
.plot-phone-block i {
    color: #D4AF37;
}

/* Luxury Button Design - Full Width Stacked Below Phone */
.btn-view-details-full {
    background: linear-gradient(135deg, #FFFDF3 0%, #fcf5db 100%);
    color: #000000 !important; /* Always Pure Black Text */
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 12px 0;
    border-radius: 10px !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    display: block;
    text-align: center;
}

/* Hover Effect on Card Base for Button */
.property-card-premium:hover .btn-view-details-full {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%) !important;
    color: #000000 !important; /* Keeps Text Black on Hover */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
/* Meta details styling for location and area inside card */
.property-meta-details p {
    font-size: 0.9rem !important;
    line-height: 1.5;
    color: #555555 !important;
}
.property-meta-details strong {
    color: #111111;
}

/* Premium WhatsApp Button Design with Black Text */
.btn-whatsapp-details-full {
    background: linear-gradient(135deg, #FFFDF3 0%, #fcf5db 100%);
    color: #000000 !important; /* Always Pure Black Text */
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 12px 0;
    border-radius: 10px !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    display: block;
    text-align: center;
}

/* Hover Effect: Button shifts to a premium golden gradient */
.property-card-premium:hover .btn-whatsapp-details-full {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%) !important;
    color: #000000 !important; /* Keeps Text Pure Black on Hover */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp-details-full i {
    color: #25D366; /* WhatsApp Green color for icon */
}

/* ! end plot Card */
/* !  find your dream Properties */


/* Premium Banner Base */
.banner-premium {
    min-height: 40vh;
    background-color: #fdf5d6; /* Rich warm ivory tint for premium asset look */
    border-bottom: 2px solid #e1ce96;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Headings */
.banner-title {
    font-size: calc(1.8rem + 1vw); /* Scalable font size for any screen */
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.title-highlight {
    color: #6d5400;
}

.banner-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333333;
    opacity: 0.85;
}

/* Base Style for Buttons (Full-Width on Mobile, Floating layout on Desktop) */
.btn-banner-premium {
    font-weight: 800 !important; /* Pure bold text */
    color: #000000 !important;   /* Pure black text always */
    padding: 12px 32px;
    font-size: 0.95rem;
    border-radius: 50px !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25) !important;
    width: 100%; /* Mobile full width */
}

@media (min-width: 576px) {
    .btn-banner-premium {
        width: auto; /* Desktop side by side layout */
    }
}

/* WhatsApp Soft Gold Button Base with Green Icon Detail */
.btn-banner-whatsapp {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}
.btn-banner-whatsapp i {
    color: #25D366; /* Vibrant WhatsApp Green Icon */
}
.btn-banner-whatsapp:hover {
    background: linear-gradient(135deg, #e6c200 0%, #bfa032 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45) !important;
}

/* Call Button Base (Slightly softer gold variant for premium distinction) */
.btn-banner-call {
    background: linear-gradient(135deg, #FFF6BD 0%, #F5D76E 100%);
}
.btn-banner-call:hover {
    background: linear-gradient(135deg, #fae996 0%, #dfbf4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45) !important;
}
/* ! end   find your dream Properties */
/* Stats */
.stats{
    background:#0d1b2a;
    color:white;
}

.counter{
    font-size:40px;
    font-weight:bold;
}

/* CTA */
.cta{
    background:#f8f9fa;
}

/*! start here Footer */
/* Real Estate Premium Footer Base */
.main-footer {
    background-color: #0d1b2a; /* Ultra Premium Dark Blue */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #D4AF37; /* Metallic Gold Top Border */
}

/* Headings Styling */
.main-footer .footer-heading {
    color: #ffffff;
    font-size: 1.5rem;
}

.main-footer .brand-gold {
    color: #D4AF37;
}

.main-footer .footer-subheading {
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

/* About Section Text */
.footer-about-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #f8f9fa;
    opacity: 0.85;
    font-weight: 400;
}

/* Social Media Circular Links */
.social-icon-link {
    width: 38px;
    height: 38px;
    background-color: #D4AF37;
    color: #0d1b2a !important; /* Premium Contrast on icon */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.social-icon-link:hover {
    background-color: #ffffff;
    color: #0d1b2a !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Clean Zone & Contact Links - NO Underline */
.footer-link-item {
    color: #ffffff !important;
    opacity: 0.8;
    text-decoration: none !important; /* Removes all underlines explicitly */
    font-size: 0.92rem;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link-item:hover {
    color: #D4AF37 !important; /* Text turns gold on hover */
    opacity: 1;
    padding-left: 4px; /* Smooth tiny slide effect */
}

/* Contact Info Section Specifics */
.main-footer .info-icon {
    color: #D4AF37;
    font-size: 1rem;
}

.contact-detail-text {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.8;
}

/* Gold Footer Divider Line */
.footer-divider {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    opacity: 1;
}

/* Bottom Copyright Typography */
.footer-copyright-row {
    font-size: 0.85rem;
    color: #ffffff;
    opacity: 0.7;
}
.social-icon-link i {
    color: #0d1b2a !important; /* सभी आइकॉन का रंग डार्क ब्लू रखेगा */
}
/*! end here Footer */



.amenity-card{
    transition:all 0.3s ease;
    border-radius:15px;
    height:100%;
}

.amenity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.12) !important;
}

.amenity-icon{
    font-size:50px;
    margin-bottom:15px;
}

.amenity-card h5{
    font-weight:600;
}



/* Video Section */
.video-container{
    border-radius:20px;
    overflow:hidden;
}

.video-container iframe{
    display:block;
}

.video-feature{
    background:#f8f9fa;
    padding:12px 15px;
    border-radius:10px;
    font-weight:500;
    transition:0.3s;
}

.video-feature:hover{
    background:#0d6efd;
    color:#fff;
}

.hero-video{
    position:relative;
    height:50vh;
    overflow:hidden;
}

.hero-video video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    z-index:2;
}

.hero-video::before{
    content:'';
    position:absolute;
    inset:0;
    background:#ffc107;
    z-index:1;
}





.luxury-card{
    width:420px;
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    box-shadow:
    0 30px 80px rgba(0,0,0,.35);
    transition:.5s;
    position:relative;
}

.luxury-card:hover{
    transform:translateY(-15px);
}

.card-image{
    position:relative;
    height:320px;
    overflow:hidden;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.luxury-card:hover img{
    transform:scale(1.12);
}

.card-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.1)
    );
}

.price-tag{
    position:absolute;
    top:20px;
    left:20px;
    z-index:2;
    background:#fff;
    color:#111;
    font-weight:700;
    padding:10px 18px;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.property-status{
    position:absolute;
    top:20px;
    right:20px;
    z-index:2;
    background:#10b981;
    color:#fff;
    padding:10px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
}

.overlay-content{
    position:absolute;
    left:25px;
    bottom:25px;
    z-index:2;
    color:#fff;
}

.overlay-content h3{
    font-size:28px;
    margin-bottom:5px;
}

.card-body-custom{
    padding:25px;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:-60px;
    position:relative;
    z-index:10;
}

.feature{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-radius:18px;
    text-align:center;
    padding:15px 10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature span{
    font-size:24px;
}

.feature h5{
    margin:8px 0 3px;
}

.description{
    margin-top:25px;
    color:#64748b;
    line-height:1.8;
}

.card-footer-custom{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.btn-view{
    flex:1;
    border:none;
    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );
    color:#fff;
    padding:14px;
    border-radius:14px;
    font-weight:600;
    cursor:pointer;
}

.btn-contact{
    width:120px;
    border:none;
    background:#f1f5f9;
    color:#111;
    padding:14px;
    border-radius:14px;
    font-weight:600;
    cursor:pointer;
}
/* ==========================================================================
   Property Details Table Section Styling (Full Width & Responsive)
   ========================================================================== */
.property-details-section {
    background-color: #f8f9fa;
}

/* Table container ko screen ke mutabik full stretch karne ke liye */
.property-custom-table {
    width: 100% !important;
    background: #ffffff;
    border-collapse: separate;
    table-layout: fixed; /* Isse columns ki width fix rehti hai aur overflow nahi hota */
}

/* Table Header styling */
.property-custom-table thead th {
    background-color: #0d1b2a !important;
    color: #FFD700 !important;
    padding: 18px 24px;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    width: 50%; /* Dono columns ko pure screen par 50-50% width dega */
}

/* Row Hover Effect */
.property-custom-table tbody tr {
    transition: background-color 0.2s ease;
}

.property-custom-table tbody tr:hover {
    background-color: #f1f5f9;
}

/* Table Cells Data */
.property-custom-table tbody td {
    padding: 16px 24px;
    vertical-align: middle;
    color: #334155;
    font-size: 1rem;
    border-color: #e2e8f0 !important;
    word-wrap: break-word; /* Lamba text hone par automatic break ho jayega */
}

/* First Column (Fields Title) Specific Styling */
.property-custom-table tbody td.field-title {
    font-weight: 600;
    color: #0d1b2a;
    background-color: #fcfcfd;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .property-custom-table thead th {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .property-custom-table tbody td {
        padding: 12px 16px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    /* Chhoti mobile screens par padding thodi aur kam ho jayegi taaki content clean dikhe */
    .property-custom-table thead th, 
    .property-custom-table tbody td {
        padding: 10px 12px;
    }
}
/* ==========================================================================
   Professional Footer Section Styling
   ========================================================================== */
.main-footer {
    background-color: #0d1b2a; /* Aapka brand dark color */
    color: #ffffff;
    font-size: 0.95rem;
}

/* Headings Styling */
.footer-heading {
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-subheading {
    color: #FFD700; /* Gold color subheadings ke liye */
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

/* Subheading ke niche ek choti elegant line */
.footer-subheading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #FFD700;
}

/* About Text */
.footer-about-text {
    color: #94a3b8; /* Soft readable grayish-white */
    line-height: 1.7;
    text-align: justify;
}

/* Navigation & Service Links */
.footer-links li a {
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links li a:hover {
    color: #FFD700 !important;
    transform: translateX(4px);
}

.footer-contact-info li .info-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* Contact Info Section */
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    color: #94a3b8;
}

.info-icon {
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Footer Divider line */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Bottom Copyright Text */
.copyright-text {
    color: #64748b;
    font-size: 0.88rem;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .footer-subheading::after {
        left: 50%;
        transform: translateX(-50%); /* Mobile par line center me ho jayegi */
    }
    .main-footer .col-md-6, .main-footer .col-lg-2, .main-footer .col-lg-3 {
        text-align: center; /* Mobile par responsive center alignment */
    }
    .footer-contact-info li {
        justify-content: center;
    }
}